.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5d5d5d;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
    
.logo {
  flex: 1;
}
    
.logo img {
  height: 100px;
  margin: right 0;;
}
    
.zoekwoorden {
  display: flex; 
  margin-left: -20px;
  gap: 35px; 
  cursor: pointer;
  border: #000000;
  border-radius: 20px;
}
    
.zoekwoorden span a {
  font-size: 20px; 
  font-weight: bold; 
  text-decoration: none; 
  text-decoration-color: black;
  margin: 20px;
}
    
a{ 
  color: #000000;
}
    
.search-container {
  position: relative;
  width: 100%;
  max-width: 400px; 
  margin: 20px auto;
}

#search {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: block;
}

.suggestions-list {
  position: absolute;
  top: 100%; 
  left: 0;
  width: 100%; 
  background-color: white;
  border: 1px solid #ddd;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 1000; 
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

.suggestions-list li {
  padding: 10px;
  cursor: pointer;
  color: black; 
  text-decoration: none; 
}

.suggestions-list li:hover {
  background-color: #f4f4f4;
}

.suggestions-list li.clickable {
  color: rgb(0, 0, 0); 
}

.inloggen-knop {
  padding: 10px 15px; 
  font-size: 16px; 
  border: none; 
  background-color: #007bff; 
  color: white; 
  border-radius: 5px; 
  cursor: pointer; 
  margin: 35px;
}
    
.winkelmandje {
  font-size: 24px; 
  cursor: pointer; 
  margin: 35px;
}
  
.aantal {
  position: absolute; 
  top: 42px; 
  right: 42px; 
  background-color: red; 
  color: white; 
  border-radius: 50%; 
  width: 15px; 
  height: 15px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 14px; 
}

.discount-banner {
  background-color: #ff9800; 
  color: white;
  text-align: center;
  padding: 15px 0; 
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px; 
}

.categories-section {
  text-align: center; 
  margin: 40px 0; 
}


.category-blocks {
  display: flex; 
  justify-content: space-between; 
  gap: 10px; 
}

.category-block {
  width: 20%; 
  height: 0;
  padding-bottom: 20%; 
  background-color: #000000; 
  text-align: center;
  position: relative; 
  border-radius: 8px;
  overflow: hidden; 
  border: 3px solid #000000;
}


.category-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
}


.category-block h3 {
  position: absolute; 
  bottom: 10px; 
  left: 50%;
  transform: translateX(-50%);
  color: rgb(255, 255, 255); 
  font-size: 1.2em;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); 
}

@media (max-width: 768px) {
  .category-blocks {
      flex-direction: column; 
      align-items: center; 
  }

  .category-block {
      width: 60%; 
      padding-bottom: 60%;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 15px;
  margin-bottom: 30px;
}

.product-item {
  background-color: #ffffff;
  padding: 15px;
  border: 3px solid #000000;
  border-radius: 8px;
  text-align: center;
  max-width: 250px;
  margin: 0 auto;
}

.product-image {
  width: 85%;
  height: auto;
  border-radius: 8px;
}
.product-image1 {
  width: 60%;
  height: auto;
  border-radius: 8px;
}

.product-name {
  font-size: 1.1rem;
  margin-top: 10px;
  font-weight: bold;
}

.product-price {
  font-size: 1rem;
  color: #4CAF50;
  margin-top: 5px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.titel{
  text-align: center;
}

.full-width-bar {
  width: 100%; 
  height: 50px; 
  background-color: #5d5d5d; 
}

.bundles-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #ffffff;
}

.bundles-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.bundles-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.bundle-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.bundle-item img {
  width: 100%;
  border-radius: 8px;
}

.bundle-price {
  font-size: 1.2rem;
  color: #4CAF50;
  font-weight: bold;
}

.bundle-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 10px;
}

.bundle-btn:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .bundles-grid {
      flex-direction: column;
      align-items: center;
  }
}

.mystery-deal {
  text-align: center;
  margin: 50px auto;
}

.mystery-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.mystery-box {
  width: 250px;
  height: 250px;
  background: #f4f4f4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.mystery-box:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

.mystery-content h3 {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.mystery-content p {
  font-size: 1em;
  color: #555;
}

.price {
  font-size: 1.2em;
  color: #27ae60;
  font-weight: bold;
  margin: 10px 0;
}

.buy-btn {
  background: #ff5722;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.buy-btn:hover {
  background: #e64a19;
}

.countdown {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
}

footer {
  padding: 20px; 
  text-align: center; 
  background-color: #5d5d5d;
  margin: 0;
  margin-right: 15px;
  color: #ffffff;
}
      
footer a{
  color: #ffffff;
  margin: 15px;
}